From: Keir Fraser Date: Mon, 13 Sep 2010 16:45:59 +0000 (+0100) Subject: Allow easier overriding of LIBLEAFDIR_x86_64 on GNU systems X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~11492 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=2e701b1f87ba03526e0b378649de648c609667b9;p=xen.git Allow easier overriding of LIBLEAFDIR_x86_64 on GNU systems Some GNU systems (including Debian) do not use /usr/lib64. This change makes it easier to have the Xen build system on amd64 put its 64-bit libraries files in /usr/lib. Signed-off-by: Ian Jackson --- diff --git a/config/StdGNU.mk b/config/StdGNU.mk index 532ee6c87b..58ae2d90b1 100644 --- a/config/StdGNU.mk +++ b/config/StdGNU.mk @@ -28,7 +28,7 @@ BINDIR = $(PREFIX)/bin INCLUDEDIR = $(PREFIX)/include LIBLEAFDIR = lib LIBLEAFDIR_x86_32 = lib -LIBLEAFDIR_x86_64 = lib64 +LIBLEAFDIR_x86_64 ?= lib64 LIBDIR = $(PREFIX)/$(LIBLEAFDIR) LIBDIR_x86_32 = $(PREFIX)/$(LIBLEAFDIR_x86_32) LIBDIR_x86_64 = $(PREFIX)/$(LIBLEAFDIR_x86_64)